home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
lib_show
/
hello_world.e
< prev
next >
Wrap
Text File
|
2000-03-25
|
446b
|
23 lines
class HELLO_WORLD
--
-- The "Hi World program" for SmallEiffel :-)
--
-- To compile type command : compile hello_world
-- Run with command : a.out
--
-- To compile an optimized version type : compile hello_world -boost -O2
--
-- To produce Java bytecode : compile -o hello hello_world
-- To run the Java bytecode : java hello
--
creation make
feature
make is
do
io.put_string("Hello World.%N");
end;
end -- HELLO_WORLD